home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4w13.zip / SELFTEST._M_ < prev    next >
Text File  |  1996-07-13  |  846b  |  35 lines

  1. #
  2. # Microsoft makefile for SELFTEST (small model)
  3. #
  4. # To use: "NMAKE SELFTEST._M_"
  5. # (use NMAKE, not MAKE)
  6. #
  7.  
  8. C_FLAGS = -c -AS -GA -Oas -Zp
  9.  
  10. selftest.exe: selftest.res selftest.obj selftest.def pcl4w.lib \
  11.            about.obj line.obj paint.obj sioerror.obj runtest.obj
  12.     link /NOD /NOE  @selftest.rsp,,,libw slibcew pcl4w.lib,selftest.def;
  13.     rc selftest.res
  14.  
  15. selftest.res: selftest.rc selftest.h
  16.     rc -r selftest.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(C_FLAGS)  about.c
  20.  
  21. runtest.obj: runtest.c runtest.h
  22.    cl $(C_FLAGS)  runtest.c
  23.  
  24. line.obj: line.c line.h pcl4w.h
  25.     cl $(C_FLAGS)  line.c
  26.  
  27. paint.obj: paint.c paint.h pcl4w.h
  28.     cl $(C_FLAGS)  paint.c
  29.  
  30. selftest.obj: selftest.c selftest.h pcl4w.h
  31.    cl $(C_FLAGS)  selftest.c
  32.  
  33. sioerror.obj: sioerror.c sioerror.h pcl4w.h
  34.    cl $(C_FLAGS)  sioerror.c
  35.